adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / RangeList<T> Class / RangeList<T> Constructor / RangeList<T> Constructor(String)
The string to parse and add values from.


In This Topic
    RangeList<T> Constructor(String)
    In This Topic
    Creates a new list and adds items parsed from the source
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal source As String _
    )
    public RangeList<T>( 
       string source
    )
    public:
    RangeList<T>( 
       String^ source
    )

    Parameters

    source
    The string to parse and add values from.
    Remarks
    This method calls Add(String,Boolean) to parse the source. Invalid values are ignored. To validate the source, call Add(String,Boolean) directly.
    See Also